home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / ear / fraphix1.lha / FraphiX.LHA / FraphiX / rexx / DeleteFrame.rexx < prev    next >
OS/2 REXX Batch file  |  1995-05-23  |  732b  |  40 lines

  1. /* Questo script ARexx serve per pilotare BuildAnim da Fraphix*/
  2. /* $VER1.0 */
  3.  
  4. if~show("L","rexxsupport.library") then do
  5.    if addlib('rexxsupport.library',0,-30,0) then
  6.       say "Rexxsupport.library caricata"
  7.    else do
  8.       say "Rexxsupport.library non trovata"
  9.       exit 10
  10.    end
  11. end
  12.  
  13.  
  14. LF = x2c("a")
  15.  
  16. say "Invio messaggio: ATTENDI"||LF||"Cancellazione in corso..."||LF
  17. call delay 50
  18.  
  19. comando = "Delete >nil: Fraphix_Store:Frame#?"
  20. /* say comando */
  21. address command comando
  22.  
  23. /*
  24. say "Invio messaggio: CONTINUA"||LF||"Attesa risposta..."
  25. call delay 50
  26.  
  27. address "FRAPHIX"
  28. options results
  29. QUIT
  30.  
  31. if (rc=0) then
  32.       say lf||"Risposta Ricevuta."
  33.      else do
  34.       say lf||"Errore "||rc||lf||result
  35.       end
  36. */
  37.  
  38. call delay 300
  39.  
  40.